Manage the segment types entities.
Name | Type | Is Mandatory |
---|---|---|
SegmentationId | Int32 | |
Label | String | |
Identifier | String | |
SourceId | Int16 | |
SegmentationTypeId | Int16 | |
DeletionFlag | Boolean | |
ProcessDate | DateTime | |
Segments | Collection of Segment | |
SegmentTypes | Collection of SegmentType | |
Source | Source |
Select all Segmentations
https://customerapi.fts-crm360.com/data/Segmentations()
HttpMethod : GET
Json Result :
[
{
"SegmentationId" : "34",
"Label" : "5PRqj3S5RLGE70Kd",
"Identifier" : "obqP2",
"SourceId" : "8",
"SegmentationTypeId" : "2",
"DeletionFlag" : "False",
"ProcessDate" : "2000-10-03T00:00:00"
},
{
"SegmentationId" : "84",
"Label" : "f6axzvXDI",
"Identifier" : "iGkN huz",
"SourceId" : "3",
"SegmentationTypeId" : "7",
"DeletionFlag" : "True",
"ProcessDate" : "1995-08-25T00:00:00"
},
...
]
Select Segmentation by Id
https://customerapi.fts-crm360.com/data/Segmentations(34)
HttpMethod : GET
Json Result :
{
"SegmentationId" : "71",
"Label" : "rpgCYD YB ZWvURM",
"Identifier" : "FVwFVFB2Ue17",
"SourceId" : "1",
"SegmentationTypeId" : "9",
"DeletionFlag" : "True",
"ProcessDate" : "2001-10-01T00:00:00"
}
Create a Segmentation
https://customerapi.fts-crm360.com/data/Segmentations()
HttpMethod : POST
Json Post :
{
"Label" : "FIOUqDOJDk oxZ",
"Identifier" : "BQQr7rVjeKDk",
"SourceId" : "2",
"SegmentationTypeId" : "4",
"DeletionFlag" : "False",
"ProcessDate" : "1997-03-04T00:00:00"
}
Informations :
- Non mandatory fields are optional for Json Post
Update a Segmentation
https://customerapi.fts-crm360.com/data/Segmentations(34)
HttpMethod : PUT
Json Post :
{
"SegmentationId" : "91",
"Label" : "GNI8Ia",
"Identifier" : "g6QfMOiE",
"SourceId" : "3",
"SegmentationTypeId" : "9",
"DeletionFlag" : "False",
"ProcessDate" : "2015-02-22T00:00:00"
}
Informations :
- Non mandatory fields are optional for Json Post
Patch a Segmentation
https://customerapi.fts-crm360.com/data/Segmentations(34)
HttpMethod : PATCH
Json Post :
{
"DeletionFlag" : "False",
"ProcessDate" : "2003-05-01T00:00:00"
}
Informations :
- Non mandatory fields are optional for Json Post
Delete a Segmentation
https://customerapi.fts-crm360.com/data/Segmentations(34)
HttpMethod : DELETE
Translate a Segmentation label
https://customerapi.fts-crm360.com/data/Segmentations(34)/Label
HttpMethod : GET
Required Fields :
Http Header for language : X-Crm360Api-Language-3